home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / c80tcog.lbr / DIR.H < prev    next >
Text File  |  1985-08-09  |  256b  |  13 lines

  1. /* dir.h - C declarations for CP/M directory struct */
  2.  
  3. struct dir {            /* CP/M directory entry        */
  4.     char user;
  5.     char filename[8];
  6.     char type[3];
  7.     char extent;
  8.     char s1, s2, rec_count;
  9.     char map[16];
  10.     };
  11.  
  12. #define DIR_SIZE sizeof(struct dir)
  13.